Dynomotion

Group: DynoMotion Message: 9192 From: Toby Rule Date: 2/12/2014
Subject: Deadlocking in GetBoards
Hi Tom,

When I disconnect/reconnect the kflop USB plug while my application is running, I am sometimes experiencing a deadlock.  It seems the deadlock can occur either when unplugging the board or when reconnecting it.  I don't see any deadlocking in the KMotion application, only in my application.

I debugged (with native code debugging turned on) and got the stacktrace below.  I do not see any other threads that are running in KMotion code, so I don't know why the lock is not released.  Do you have any ideas how I can prevent this?

Thanks, 

Toby

Worker Thread Worker Thread CSyncObject::Lock Normal
ntdll.dll!7753f8d1()  
[Frames below may be incorrect and/or missing, no symbols loaded for ntdll.dll]  
ntdll.dll!7753f8d1()  
KernelBase.dll!75f3149d()  
KMotionDLL.dll!CSyncObject::Lock(unsigned long dwTimeout)  Line 42  
KMotionDLL.dll!CKMotionDLL::Pipe(const char * s, int n, char * r, int * m)  Line 348  
KMotionDLL.dll!CKMotionDLL::ListLocations(int * nlocations, int * list)  Line 116  
KMotion_dotNet_Interop.dll!KM_dotnet_Interop_ListLocations(void * handle, int * nlocations, int * list)  Line 328  
External Code]  
KMotion_dotNet.dll!KMotion_dotNet.KM_Controller.GetBoards(out int numberofboards) Line 873 + 0x26 bytes  
SharedController.dll!LaserTech.eCut.KMController.CheckConnected() Line 1232 + 0x10 bytes  
SharedController.dll!LaserTech.eCut.KMController.onStatusTimer(object sender, System.Timers.ElapsedEventArgs e) Line 353 + 0x5 bytes  
External Code]  
kernel32.dll!76f9336a()  
ntdll.dll!77559f72()  
ntdll.dll!77559f45()  

The information contained in this transmission is intended only for the person or entity
to which it is addressed and may contain II-VI Proprietary and/or II-VI Business Sensitive
material. If you are not the intended recipient, please contact the sender immediately
and destroy the material in its entirety, whether electronic or hard copy. You are
notified that any review, retransmission, copying, disclosure, dissemination or other
use of, or taking of any action in reliance upon this information by persons or entities 
other than the intended recipient is prohibited.
Group: DynoMotion Message: 9193 From: Tom Kerekes Date: 2/12/2014
Subject: Re: Deadlocking in GetBoards
Hi Toby,

The KMotion Libraries have a concept of a "Token" that allows a Thread to have uninterrupted access to KFLOP from other Threads and Processes and (even the same thread in some cases).  If the Token is obtained it must be Released or all other access will be blocked forever.  I suspect somewhere in your code (or ours) the Token is being obtained and not released.  That isn't easy to find.  I've often thought of passing in some sort of identifier into GetToken so that it could later report back who had it last.  But usually by examining code it can be determined how it might happen.  You might set a breakpoint in the lock function and then walk through the code back up the stack to see if there is a path that doesn't release the Token.

You might also put a entry/exit counter in your Timer routine to see if it is being re-entered.

HTH
Regards
TK

Group: DynoMotion Message: 9195 From: Toby Rule Date: 2/12/2014
Subject: Re: Deadlocking in GetBoards
Attachments :

    Hi Tom,


    I double-checked, and I'm fairly sure I'm not holding onto any tokens in my code.  And my timer loops are locked so they cannot be re-entered.  


    Most KMotion_DotNet commands handle the locking internally, don't they?   I thought I normally I shouldn't have to take out a lock unless I'm doing something special like flashing firmware.   


    Whatever is happening is the result of me doing something different than in KMotion, because in KMotion disconnect/reconnect works correctly.


    Toby